-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Améliorations mineures #55
Conversation
badge = BadgeBlock(label="Badge") | ||
|
||
|
||
heading_choices = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ça m'embête un peu, ces variables qui se promènent entre deux définitions de classe. Y a-t-il moyen de les définir directement dans leurs classes ?
Un peu comme dans Django quand on a des CharField avec des choix :
class Student(models.Model):
class YearInSchool(models.TextChoices):
FRESHMAN = "FR", _("Freshman")
SOPHOMORE = "SO", _("Sophomore")
JUNIOR = "JR", _("Junior")
SENIOR = "SR", _("Senior")
GRADUATE = "GR", _("Graduate")
year_in_school = models.CharField(
max_length=2,
choices=YearInSchool.choices,
default=YearInSchool.FRESHMAN,
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ça m'embête aussi un peu, je les ai laissées avant leur classe (comme elles étaient quand j'ai déplacé le tout depuis models.py
), mais je serai effectivement d'avis de soi les intégrer dans la classe, soit les déplacer dans un constants.py
🎯 Objectif
🔍 Implémentation
dashboard
dédiée à personnaliser l’admin de Wagtailwagtail.contrib.modeladmin
par le paquetwagtail-modeladmin
(provoquait unRemovedInWagtail60Warning
)heading_tag
au block callout pour résoudre une alerte d’accessibilitéCartes laissées en attente d’infos supplémentaires :
À faire dans une PR dédiée :
Issues concernant la section promotionnelle :
🏕 Amélioration continue
models.py
vers unblocks.py
dédié.🖼️ Images
(optionnel) Une ou plusieurs captures d’écran, si pertinent